TaxCalculationProviderThe TaxCalculationProvider section of the web.config file allows you to assign a tax calculation provider for your KommerceServer system, which determines how sales tax will be calculated on orders. You can only select one provider to use for each KommerceServer website by setting the default attribute for the element. Nested within this element are the available providers supported and further described below.
Example Usage<TaxCalculationProvider default="KoreTaxCalculationProvider"> <providers> <clear /> <add name="KoreTaxCalculationProvider" type="Koretech.KommerceServer.Providers.KoreTaxCalculationProvider, Koretech.KommerceServer" /> <add name="KourierTaxCalculationProvider" type="Koretech.KommerceServer.Providers.KourierTaxCalculationProvider, Koretech.KommerceServer" /> <add name="MicroAireTaxCalculationProvider" type="Koretech.KommerceServer.Providers.MicroAireTaxCalculationProvider, Koretech.KommerceServer" /> </providers> </TaxCalculationProvider> |